Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 421 Bytes

16.1.2 - swoole_version.md

File metadata and controls

36 lines (28 loc) · 421 Bytes

swoole_version

获取swoole扩展的版本号,如1.6.10

函数原型

string swoole_version();

参数

返回值

返回当前执行的PHP安装的Swoole扩展版本

使用示例

<?php
var_dump(SWOOLE_VERSION);
var_dump(swoole_version());
/**
返回值:
string(6) "1.9.23"
string(6) "1.9.23"
**/

注意

  • 全局变量SWOOLE_VERSION同样表示swoole扩展版本